added some development tools
[windows-sources.git] / developer / Samples / NET 4.6 / WF_WCF_Samples / WCF / Tools / CustomChannelsTester / CS / Enum.cs
blob58795df38331096416c87f60944c9dff9d5be856
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation. All rights reserved.
3 //----------------------------------------------------------------
5 namespace Microsoft.Samples.Tools.CustomChannelsTester
7 //Contract options possible through the Test Spec
8 public enum ContractOption
10 True,
11 False,
12 Both,
15 //All possible types of service contracts specified in the Interfaces.cs
16 public enum ServiceContract
18 IAsyncSessionOneWay,
19 IAsyncSessionTwoWay,
20 IAsyncOneWay,
21 IAsyncTwoWay,
22 ISyncSessionOneWay,
23 ISyncSessionTwoWay,
24 ISyncOneWay,
25 ISyncTwoWay,
26 IDuplexContract,
27 IDuplexSessionContract